home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209b.zip / octave-2.09 / SCRIPTS.ZIP / scripts.fat / misc / popen2.org < prev    next >
Text File  |  1996-07-15  |  3KB  |  106 lines

  1. ## Copyright (C) 1996 John W. Eaton
  2. ##
  3. ## This file is part of Octave.
  4. ##
  5. ## Octave is free software; you can redistribute it and/or modify it
  6. ## under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  9. ##
  10. ## Octave is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with Octave; see the file COPYING.  If not, write to the Free
  17. ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19.  
  20. ## usage: [IN, OUT, PID] = popen2 (COMMAND, ARGS)
  21. ##
  22. ## Start a subprocess with two-way communication.  COMMAND specifies
  23. ## the name of the command to start.  ARGS is an array of strings
  24. ## containing options for COMMAND.  IN and out are the file ids of the
  25. ## input and streams for the subprocess, and PID is the process id of
  26. ## the subprocess, or -1 if COMMAND could not be executed.
  27. ##
  28. ## Example:
  29. ##
  30. ##  [in, out, pid] = popen2 ("sort", "-nr");
  31. ##  fputs (in, "these\n");
  32. ##  fputs (in, "are\n");
  33. ##  fputs (in, "some\n");
  34. ##  fputs (in, "strings\n");
  35. ##  fclose (in);
  36. ##  while (isstr (s = fgets (out)))
  37. ##    fputs (stdout, s);
  38. ##  endwhile
  39. ##  fclose (out);
  40.  
  41. ## Author: jwe
  42.  
  43. function [in, out, pid] = popen2 (command, args)
  44.  
  45.   in = -1;
  46.   out = -1;
  47.   pid = -1;
  48.  
  49.   if (nargin == 1 || nargin == 2)
  50.  
  51.     if (nargin == 1)
  52.       args = "";
  53.     endif
  54.  
  55.     if (isstr (command))
  56.  
  57.       [stdin_pipe, stdin_status] = pipe ();
  58.       [stdout_pipe, stdout_status] = pipe ();
  59.  
  60.       if (stdin_status == 0 && stdout_status == 0)
  61.  
  62.     pid = fork ();
  63.  
  64.     if (pid == 0)
  65.  
  66.       fclose (stdin_pipe (2));
  67.       fclose (stdout_pipe (1));
  68.  
  69.       dup2 (stdin_pipe (1), stdin);
  70.       fclose (stdin_pipe (1));
  71.  
  72.       dup2 (stdout_pipe (2), stdout);
  73.       fclose (stdout_pipe (2));
  74.  
  75.       if (exec (command, args) < 0)
  76.         error ("popen2: unable to start process `%s'", command);
  77.         exit (0);
  78.       endif
  79.  
  80.     elseif (pid)
  81.  
  82.       fclose (stdin_pipe (1));
  83.       fclose (stdout_pipe (2));
  84.  
  85.       if (fcntl (stdout_pipe (1), __F_SETFL__, __O_NONBLOCK__) < 0)
  86.         error ("popen2: error setting file mode");
  87.       else
  88.         in = stdin_pipe (2);
  89.         out = stdout_pipe (1);
  90.       endif
  91.  
  92.     elseif (pid < 0)
  93.       error ("popen2: fork failed -- unable to create child process");
  94.     endif
  95.       else
  96.     error ("popen2: pipe creation failed");
  97.       endif
  98.     else
  99.       error ("popen2: file name must be a string");
  100.     endif
  101.   else
  102.     usage ("[in, out, pid] = popen2 (command, args)");
  103.   endif
  104.  
  105. endfunction
  106.